home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 009 / lightpat.arc / EXCLUC.PAT next >
Encoding:
Text File  |  1986-06-28  |  6.0 KB  |  151 lines

  1. PRODUCT : TURBO LIGHTNING
  2. VERSION : 1.00A
  3.      OS : PC DOS
  4.  
  5.   TITLE :  EXCLUDING LINES FROM BEING CHECKED
  6.  
  7.  
  8.  
  9. **NOTE:  The  application  of  the following patch  requires  the
  10.          ability to add and subtract hexidecimal numbers.
  11.  
  12. This  patch  to  Turbo Lightning  enables  users  to  selectively
  13. exclude  lines  of  the screen from being checked during  a  full
  14. screen check.   The change is global.  Once made,  it affects all
  15. environments.    This  patch  changes  the  screen  location  and
  16. character count where the full screen check starts and the number
  17. of characters after that starting point to be checked.
  18.  
  19. This  patch  tells Turbo Lightning to start at  address  A0(hex),
  20. which  is  the screen address for the second line of the  screen.
  21. This  will  cause Turbo Lightning to skip the first line  of  the
  22. screen which starts at address 0(zero).  For each line at the top
  23. of  the screen you wish to omit from the full screen  check,  add
  24. A0(hex) to the address moved into SI.   For each line of text you
  25. omit (top or bottom) subtract 50(hex) from the number moved  into
  26. CX. The original value moved into CX was 7D0(hex).
  27.  
  28. Use  the DOS utility,  DEBUG,  to apply the following patch to  a
  29. copy  of your original LIGHT.COM file.   Copy DEBUG.COM into  the
  30. directory  (or  onto  the diskette) where your  working  copy  of
  31. LIGHT.COM  is  located.   At the DOS prompt,  type the  following
  32. information  exactly  as  it  appears.  (Conclude  each  line  by
  33. pressing <Enter>.)
  34.  
  35. Note:   1.   DEBUG is not sensitive to upper and lower case.  All
  36.              addresses  are  listed  in upper case  for  ease  of
  37.              readability.
  38.  
  39.         2.   While in DEBUG, the prompt appears as a dash (-).
  40.  
  41.         3.   If  you  do  not receive the  appropriate  response,
  42.              press "q" followed by <Enter>,  to quit.  Check your
  43.              version numbers and, if correct,try again.
  44.  
  45. TYPE:                   THIS APPEARS:
  46.  
  47. debug LIGHT.COM<Enter>    -
  48.  
  49. a5E45<Enter>              xxxx:5E45
  50.  
  51. mov SI,A0<Enter>          xxxx:5E48
  52.  
  53. mov CX,730<Enter>         xxxx:5E4B
  54.  
  55. <Enter>                   -
  56.  
  57. w<Enter>                  Writing xxxx bytes
  58.  
  59. q<Enter>                  DOS prompt
  60.  
  61. PRODUCT : TURBO LIGHTNING
  62. VERSION : 1.00B
  63.      OS : PC DOS
  64.  
  65.   TITLE :  EXCLUDING LINES FROM BEING CHECKED
  66.  
  67.  
  68. **NOTE:  The  application  of  the following patch  requires  the
  69.          ability to add and subtract hexidecimal numbers.
  70.  
  71. This  patch  to  Turbo Lightning  enables  users  to  selectively
  72. exclude  lines  of  the screen from being checked during  a  full
  73. screen check.   The change is global.  Once made,  it affects all
  74. environments.    This  patch  changes  the  screen  location  and
  75. character count where the full screen check starts and the number
  76. of characters after that starting point to be checked.
  77.  
  78. This  patch  tells Turbo Lightning to start at  address  A0(hex),
  79. which  is  the screen address for the second line of the  screen.
  80. This  will  cause Turbo Lightning to skip the first line  of  the
  81. screen which starts at address 0(zero).  For each line at the top
  82. of  the screen you wish to omit from the full screen  check,  add
  83. A0(hex) to the address moved into SI.   For each line of text you
  84. omit (top or bottom) subtract 50(hex) from the number moved  into
  85. CX. The original value moved into CX was 7D0(hex).
  86.  
  87.  
  88.  
  89. TYPE:                     THIS APPEARS:
  90.  
  91. debug LIGHT.COM<Enter>    -
  92.  
  93. a5E95<Enter>              xxxx:5E95
  94.  
  95. mov SI,A0<Enter>          xxxx:5E98
  96.  
  97. mov CX,730<Enter>         xxxx:5E9B
  98.  
  99. <Enter>                   -
  100.  
  101. w<Enter>                  Writing xxxx bytes
  102.  
  103. q<Enter>                  DOS prompt
  104.  
  105.  
  106.  
  107. PRODUCT : TURBO LIGHTNING
  108. VERSION : 1.01A
  109.      OS : PC-DOS
  110.  
  111.   TITLE :  EXCLUDING LINES FROM BEING CHECKED
  112.  
  113.  
  114. **NOTE:  The  application  of  the following patch  requires  the
  115.          ability to add and subtract hexidecimal numbers.
  116.  
  117. This  patch  to  Turbo  Lightning enables  users  to  selectively
  118. exclude  lines  of the screen from being checked  during  a  full
  119. screen check.   The change is global.  Once made,  it affects all
  120. environments.    This  patch  changes  the  screen  location  and
  121. character  count  where  the full screen check  starts  and,  the
  122. number of characters after that starting point to be checked.
  123.  
  124. This  patch  tells Turbo Lightning to start at  address  A0(hex),
  125. which  is  the screen address for the second line of the  screen.
  126. This  will  cause Turbo Lightning to skip the first line  of  the
  127. screen which starts at address 0(zero).  For each line at the top
  128. of  the  screen you wish to omit from the full screen check  add,
  129. A0(hex) to the address moved into SI.   For each line of text you
  130. omit (top or bottom), subtract 50(hex) from the number moved into
  131. CX. The original value moved into CX was 7D0(hex).
  132.  
  133.  
  134. TYPE:                   THIS APPEARS:
  135.  
  136. debug LIGHT.COM<Enter>    -
  137.  
  138. a5F7F<Enter>              xxxx:5F7F
  139.  
  140. mov SI,A0<Enter>          xxxx:5F82
  141.  
  142. mov CX,730<Enter>         xxxx:5F85
  143.  
  144. <Enter>                   -
  145.  
  146. w<Enter>                  Writing xxxx bytes
  147.  
  148. q<Enter>                  DOS prompt
  149.  
  150.  
  151.